home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / sndkey11 / send.dpr < prev    next >
Text File  |  1996-09-15  |  260b  |  14 lines

  1. program Send;
  2.  
  3. uses
  4.   Forms,
  5.   Smain in 'SMAIN.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Title := 'Test program for SendKeys DLL. Copyright ⌐ 1996 J M Technical Services, UK.';
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.